home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 11 / AMUG BBS in a Box Volume XI (April 1994) (MacWizards).iso / Files / System7 tools / Frontier / Frontier SDK 2.1.sit / Frontier SDK 2.1 / Sample Code / Minimal Applet / MinApp & Frontier / DocServer Source Text / DocServer Source Text
Encoding:
Text File  |  1992-10-11  |  1.4 KB  |  49 lines  |  [TEXT/DOCS]

  1.  
  2. Verb    MinApp.bringToFront
  3. Syntax    MinApp.bringToFront ()
  4. Parameters    None.
  5. Action    Makes MinApp the frontmost application.
  6. Returns    True if MinApp is running and could be brought to the front, false otherwise.
  7. Examples    MinApp.bringToFront ()
  8.     « false
  9. See Also    MinApp.launch
  10.  
  11. Verb    MinApp.launch
  12. Syntax    MinApp.launch ()
  13. Parameters    None.
  14. Action    Launches the MinApp application.
  15. Returns    True if MinApp is running, false otherwise.
  16. Examples    MinApp.launch ()
  17.     « true
  18. See Also    MinApp.bringToFront
  19. MinApp.quit
  20.  
  21. Verb    MinApp.quit
  22. Syntax    MinApp.quit ()
  23. Parameters    None.
  24. Action    Quits the MinApp application.
  25. Returns    True if MinApp was running, false otherwise.
  26. Examples    MinApp.quit ()
  27.     « true
  28. See Also    MinApp.bringToFront
  29.  
  30. Verb    MinApp.lowerCaseText
  31. Syntax    MinApp.lowerCaseText ()
  32. Parameters    None.
  33. Action    Converts all the text in MinApp's target window to lower case.
  34. Returns    True.
  35. Examples    MinApp.lowerCaseText ()
  36.     « true
  37. Notes    There is little utility in this verb, it's provided as part of the example of verb documentation and implementation of the Applet Toolkit.
  38. See Also    MinApp.upperCaseText
  39.  
  40. Verb    MinApp.upperCaseText
  41. Syntax    MinApp.upperCaseText ()
  42. Parameters    None.
  43. Action    Converts all the text in MinApp's target window to upper case.
  44. Returns    True.
  45. Examples    MinApp.upperCaseText ()
  46.     « true
  47. Notes    There is little utility in this verb, it's provided as part of the example of verb documentation and implementation of the Applet Toolkit.
  48. See Also    MinApp.lowerCaseText
  49.